Terraformのoutput variable
from
Terraform
JSのconsole.logみたいな感じかな
mrsekut.icon
code:例.tf
output "public_ip" {
value = aws_instance.example.public_ip
description = "The public IP address of the web server"
}
λ terraform apply
の実行後に出力される
λ terraform output
を実行しても確認できる